home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat5 / dcf.5 < prev    next >
Text File  |  1999-09-16  |  876b  |  67 lines

  1.  
  2.  
  3.  
  4. dcf(1)                         Scilab Function                         dcf(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   dcf - double coprime factorization
  13.  
  14. CALLING SEQUENCE
  15.   [N,M,X,Y,NT,MT,XT,YT]=dcf(G,[polf,polc,[tol]])
  16.  
  17. PARAMETERS
  18.  
  19.   G           : syslin list (continuous-time linear system)
  20.  
  21.   polf, polc  : respectively the poles of XT and YT and the poles of N and M
  22.               (default values =-1).
  23.  
  24.   tol         : real threshold for detecting stable poles (default value
  25.               100*%eps).
  26.  
  27.   N,M,XT,YT,NT,MT,X,Y
  28.               : linear systems represented by syslin lists
  29.  
  30.  
  31. DESCRIPTION
  32.   returns eight stable systems (N,M,X,Y,NT,MT,XT,YT) for the doubly coprime
  33.   factorization
  34.  
  35.                    !XT  -YT! ! M  Y !
  36.                    !       !*!      ! = eye
  37.                    !-NT  MT! ! N  X !
  38.  
  39.  
  40.  
  41.  
  42.   G must be stabilizable and detectable.
  43.  
  44. SEE ALSO
  45.   copfac
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.